home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / MW MPW Binaries 1.1.1a2 / mwcPPC / MWCIncludes / iostream < prev    next >
Encoding:
Text File  |  1994-07-18  |  477 b   |  28 lines  |  [TEXT/MMCC]

  1. // iostream standard header
  2. #ifndef _IOSTREAM_
  3. #define _IOSTREAM_
  4. #include <fstream>
  5.  
  6. #if __MWERKS__
  7. #pragma options align=mac68k
  8. #endif
  9.  
  10.         // standard stream declarations
  11. extern istream cin;
  12. extern ostream cout;
  13. extern ostream cerr;
  14. extern ostream clog;
  15. static ios::Init _Ios_init;
  16.  
  17. #if __MWERKS__
  18. #pragma options align=reset
  19. #endif
  20.  
  21. #endif
  22.  
  23. /*
  24.  * Copyright (c) 1994 by P.J. Plauger.  ALL RIGHTS RESERVED. 
  25.  * Consult your license regarding permissions and restrictions.
  26.  */
  27.  
  28.